home *** CD-ROM | disk | FTP | other *** search
/ Old Testament Foundatiosn with Philip Yancey / Old Testament Foundatiosn with Philip Yancey - Disc 1.iso / pc / data / m18.dir / 00014.ls < prev    next >
Encoding:
Text File  |  1996-09-06  |  501 b   |  21 lines

  1. on mouseDown
  2.   global gColumn, gRow, gPreviousMenu
  3.   puppetSound("MouseDown.aif")
  4.   repeat while the mouseDown
  5.     checkColumn()
  6.   end repeat
  7.   startTimer()
  8.   repeat while the timer < 15
  9.     nothing()
  10.   end repeat
  11.   if (gColumn = 0) or (gRow = 0) then
  12.     set the castNum of sprite 10 to cast "m40"
  13.     updateStage()
  14.   else
  15.     pupSprites(1, 48, 0)
  16.     set gPreviousMenu to "movie" && QUOTE & "M06.DIR" & QUOTE
  17.     set myMovie to "book" & gColumn & gRow & ".dir"
  18.     go("audio", myMovie)
  19.   end if
  20. end
  21.